encoding/asn1.fieldParameters.tag (field)
19 uses
encoding/asn1 (current package)
asn1.go#L756: if t.class == expectedClass && t.tag == *params.tag && (t.length == 0 || t.isCompound) {
asn1.go#L819: if !params.explicit && params.tag != nil {
asn1.go#L821: expectedTag = *params.tag
asn1.go#L825: if !params.explicit && params.application && params.tag != nil {
asn1.go#L827: expectedTag = *params.tag
asn1.go#L831: if !params.explicit && params.private && params.tag != nil {
asn1.go#L833: expectedTag = *params.tag
common.go#L81: tag *int // the EXPLICIT or IMPLICIT tag (maybe nil).
common.go#L103: if ret.tag == nil {
common.go#L104: ret.tag = new(int)
common.go#L127: ret.tag = new(int)
common.go#L128: *ret.tag = i
common.go#L134: if ret.tag == nil {
common.go#L135: ret.tag = new(int)
common.go#L139: if ret.tag == nil {
common.go#L140: ret.tag = new(int)
marshal.go#L687: if params.tag != nil {
marshal.go#L705: tag: *params.tag,
marshal.go#L714: tag = *params.tag
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |